:root {
  --main_color: #0B6E4F;
  --sec-color: #f6f6f6;
  --header-color: #d2d2d2;
  --txt-color: #797979;
  --dark-green-color: #E0E0E2;
}

.tablazat{
  width: 100%;
margin-top: 80px;
margin-bottom:70px ;
}
table {
border-collapse: collapse;
border-spacing: 0;
border: 1px solid #ddd;
}

th, td {
text-align: left;
padding: 8px;
}

td .freeze2{
  position: sticky; left: 331px;
z-index: 3;
background-color: white;
}

tr:nth-child(even){background-color: #f2f2f2}


#points {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 20px;
}

#points td, #points th {
white-space:nowrap;
text-align: center;
border: 1px solid #ddd;
padding: 8px;
}

#points tr:nth-child(even){background-color: #f2f2f2;}

#points tr:hover {background-color: #ddd;}

#points th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #888888;
color: white;
}


.freeze { position: sticky; left: 0;
z-index: 3;
background-color: white;
}
.freeze2 { position: sticky; left: 21.75%;
z-index: 3;
background-color: white;
}

#points .player{
    background-color: #0b6e4f;
    color: white;
    width: 300px;
}

#points .name{
  width: 300px;
  padding-right: 15px;
  padding-left: 15px;
}
select {

background-color: transparent;

padding: 0 1em 0 0;
margin: 0;
width: 100%;
font-family: inherit;
font-size: inherit;
cursor: inherit;
line-height: inherit;
z-index: 1;
}

.select {
display: grid;
grid-template-areas: "select";
align-items: center;
position: relative;

}

.select--disabled {
cursor: not-allowed;
background-color: #eee;
background-image: linear-gradient(to top, #ddd, #eee 33%);
}

label {
font-size: 1.125rem;
font-weight: 500;
}

.select + label {
margin-top: 2rem;
}

body {
min-height: 100vh;
place-content: center;
}

button {
cursor: pointer;
border: none;
font-size: 15px;
padding: 10px 20px;
text-transform: uppercase;
letter-spacing: 5px;
background-color: #0b6e4f62;
position: relative;
overflow: hidden;
  transition: 0.9s;
}
button:hover{
  background-color: #f4f7f8;
}
button:before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 4px;
background-color: green;
transition: all 1s;
}
button:after {
content: "";
position: absolute;
bottom: 0;
right: -100%;
width: 100%;
height: 4px;
background-color: var(--main_color);
transition: all 1s;
}
button:hover:before {
left: 0;
}
button:hover:after {
right: 0;
}
.button span:before {
content: "";
position: absolute;
top: -100%;
right: 0%;
width: 4px;
height: 100%;
background-color: var(--main_color);
transition: all 1s;
}
button:hover span:before {
top: 0;
}
.button span:after {
content: "";
position: absolute;
bottom: -100%;
left: 0%;
width: 4px;
height: 100%;
background-color: var(--main_color);
transition: all 1s;
}
button:hover span:after {
bottom: 0;
}